home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / CLR.CC < prev    next >
Text File  |  1993-04-04  |  343b  |  17 lines

  1. #include <dos.h>
  2. void clr(wattr)
  3. /* CLear the screen using the attribute passed */
  4. {
  5.    union REGS inregs;
  6.  
  7.    inregs.h.bh = wattr;
  8.    inregs.h.cl = 0;
  9.    inregs.h.ch = 0;
  10.    inregs.h.dl = 79;
  11.    inregs.h.dh = 24;
  12.    inregs.h.al = 0;
  13.    inregs.h.ah = 6;            /* do the scroll */
  14.    int86(0x10,&inregs,&inregs);
  15.    locate(0,0);
  16. }
  17.